/*
html, body {
    margin: 0;
    padding: 0;
}

#loader{
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #000000 url('../Preloader/load.gif') no-repeat center;
	z-index: 999;
}


----------------------------------------------------*/

        #loader {
            position: fixed;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            z-index: 9999;
            background-color: #000000;
			
        }
        #loader img{
             /*position: relative;
            left: 40%;
            top: 40%;*/
             position: absolute;
             left: 50%;
             top: 50%; 
             margin-left: -150px;
             margin-top: -150px;
			
        }
